All Questions
18 questions
3votes
1answer
253views
Simple blackjack program in Java
I wrote this blackjack game for my APCSA class (already submitted) and was wondering if anyone had feedback on what parts of it are improperly written. My main concern is the fact that I am printing ...
4votes
2answers
387views
Blackjack implementation - Java
I have inspired from the recent blackjack question here and decide to code for simple blackjack console application Please review and let me know What can improve on the code? Rules for the ...
7votes
1answer
2kviews
Blackjack game in Java
So this is a blackjack game, any feedback or tips on what I should remove from the code that is not needed is very appreciated. Note: some of the names of classes or variables are in Swedish but it ...
0votes
4answers
14kviews
Simple OOP Blackjack game in Java
I've created a relatively simple Blackjack game in java. The reason why I decided to do this specific project was to improve my object orientated programming in java. I will post my code so feel ...
16votes
4answers
16kviews
Simple Blackjack game in console
edit: After receiving the great feedback, I have tried to make my code better. The new version can be seen here: Simple Blackjack game in console (update) This is one of my first finished projects ...
2votes
2answers
460views
Generic OOP Implementation of a Deck-package in Java
I have posted some versions of this question (or at least similar ones) before. But I once again tried to improve it. The goal is to be able to use this package whether it's for a traditional card-...
3votes
2answers
2kviews
OOP implementation of Blackjack in Java - part 2
Part 1 Last time I got a lot of great advice, so this is take two with all that in mind: My main concern with this implementation is the use of Inheritance (A base Player) vs having that as a ...
3votes
4answers
2kviews
OOP implementation of BlackJack in Java
This code is not done, but still fully functional. But, before I continue I'd really appreciate some input on the code-structure as is. AbstractHand.java ...
4votes
2answers
5kviews
OOP Design of a Generic Deck of Cards
I have structured a package containing interfaces that could be implemented and used for any card game. I'm interested in knowing if I'm on the right track OOP-wise, or If I need to change my design....
26votes
5answers
33kviews
Object Oriented Design of Card Deck
I am designing classes for a game with card deck. Please review my code. Each Player gets Hand of cards The Deck can be shuffled and cards are dealt one at a time from the deck and added to the ...
3votes
4answers
6kviews
Simple Blackjack implementation
Continuing my previous post, I have completed my game of Blackjack, the simple version. I am aware it's very long. I haven't included some of the suggested changes suggested in the previously to the <...
5votes
1answer
3kviews
Deck of cards implementation
Update: Simple Blackjack implementation I was playing Blackjack in a phone app and decided to try to do the game in Java, using the console for a start. So far I'd like to review the deck of cards ...
4votes
1answer
2kviews
Second attempt at a Blackjack game
I posted yesterday about my first attempt at a Blackjack game. After I received much helpful advice I tried my best to fix up my code. I was wondering what you would think about round two! Edit: I ...
10votes
3answers
59kviews
First attempt at a Java Blackjack game
I just completed my first multi class program, Blackjack, and it works! It allows the user to play Blackjack against a single dealer, with no other players at the table. I was wondering, seeing as it ...
2votes
2answers
23kviews
Simple deck of cards
I had recently completed one programming challenge where I've had to design a deck of cards. The time was limited but I tried my best. I designed the basic operations and am wondering if I can improve ...